Aviation API icon

Aviation API

(0 reviews)

15 Wind Shear Potential

Wind shear potential is a product that provides a forecast of the intensity of wind shear along the approach path for an airport location.

This returns the windshear potential for an airport (ICAO coded), at this time the only one we are producing is for Dunedin airport.

15.1 Latest for a Location

Request the latest windshear potential issued for a specific airport location.

15.1.1 API Call:

GET /aviation/windshear/{location}/latest

15.1.2 Path Parameter:

Path ParameterExampleDescription
locationNZDNA supported 4-letter airport ICAO code.

The ICAO code must be uppercase.

This parameter is Mandatory.

15.1.3 Example:

This example would return the latest windshear potential for Dunedin airport.

GET /aviation/windshear/NZDN/latest

15.1.4 API Response:

{
    "version":"1.0",
    "issue-time":"2018-10-15T22:27:43Z",
    "path":"/windshear/NZDN/latest",
    "response":[
        {
            "av:windshear-location":"NZDN",
            "met:valid-to":"2018-10-16T12:00:00Z",
            "met:product-name":"windshear",
            "met:domain":"aviation",
            "met:issue-time":"2018-10-15T17:53:00Z",
            "met:valid-from":"2018-10-15T21:00:00Z",
            "met:data":"WINDSHEAR POTENTIAL\nNZDN ISSUED 151753UTC VALID 152100/161200UTC\nRWY03 APPROACH 2124 60-300FT +MOD\nRWY03 APPROACH 0306 60-300FT +STG\nRWY21 APPROACH 2112 60-2100FT NIL SIG"
        }
    ]
}

Reviews